d2ba854fc214b78ebd8d57749161fa577db30e1a,java/src/org/dartlang/vm/service/element/Context.java,Context,getLength,#,33

Before Change


   * The number of variables in this context.
   */
  public int getLength() {
    return json.get("length").getAsInt();
  }

  /**

After Change


   * The number of variables in this context.
   */
  public int getLength() {
    return json.get("length") == null ? -1 : json.get("length").getAsInt();
  }

  /**